home *** CD-ROM | disk | FTP | other *** search
/ AGA Toolkit '97 / The AGA Toolkit '97.iso / programming / c / dice2.06.37 / include / lists.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-09-07  |  350 b   |  25 lines

  1.  
  2. /*
  3.  *  LISTS.H
  4.  *
  5.  *  (c)Copyright 1990, Matthew Dillon, All Rights Reserved
  6.  */
  7.  
  8. #ifndef LISTS_H
  9. #define LISTS_H
  10.  
  11. #ifndef EXEC_TYPES_H
  12. #include <exec/types.h>
  13. #endif
  14. #ifndef EXEC_LISTS_H
  15. #include <exec/lists.h>
  16. #endif
  17.  
  18. extern void *GetHead(void *);
  19. extern void *GetTail(void *);
  20. extern void *GetSucc(void *);
  21. extern void *GetPred(void *);
  22.  
  23. #endif
  24.  
  25.